home *** CD-ROM | disk | FTP | other *** search
/ Risc World 5 / Risc World 5.iso / SOFTWARE / Issue5 / LEYFIND.ZIP / LeyFind / ReadMe1st next >
Text File  |  2005-01-02  |  15KB  |  325 lines

  1.  
  2. WARNING: This application will only work on writable media, not CD ROMs!
  3.  
  4. LeyFinder Martin Carradus Version 1.00 January 2005
  5. -------------------------------------------------------------------
  6.  
  7. DISCLAIMER - AGREEMENT
  8.  
  9. Users of LeyFinder must accept this disclaimer of warranty:
  10. "LeyFinder is supplied as is.  The author disclaims all
  11. warranties, expressed or implied, including, without limitation,
  12. the warranties of merchantability and of fitness for any purpose.
  13. The author assumes no liability for damages, direct or conse-
  14. quential, which may result from the use of LeyFinder."
  15.  
  16. LeyFinder is a "shareware program" and is provided at no charge
  17. to the user for evaluation.  Feel free to share it with your
  18. friends, but please do not give it away altered or as part of
  19. another system.  The essence of "user-supported" software is to
  20. provide personal computer users with quality software without
  21. high prices, and yet to provide incentive for programmers to
  22. continue to develop new products.  If you find this program
  23. useful and find that you are using LeyFinder and continue to use
  24. LeyFinder after a reasonable trial period, you must make a reg-
  25. istration payment of £10 (UK) or $20 (US) to Martin Carradus.  
  26. The £10 (UK) or $20 (US) registration fee will license one copy for use
  27. on any one computer at any one time.  You must treat this software just
  28. like a book.  An example is that this software may be used by any
  29. number of people and may be freely moved from one computer
  30. location to another, so long as there is no possibility of it
  31. being used at one location while it's being used at another.
  32. Just as a book cannot be read by two different persons at the
  33. same time.
  34.  
  35. Commercial users of LeyFinder must register and pay for their
  36. copies of LeyFinder within 30 days of first use or their license
  37. is withdrawn.  Site-License arrangements may be made by con-
  38. tacting Martin Carradus.
  39.  
  40. Anyone distributing LeyFinder for any kind of remuneration must
  41. first contact Martin Carradus at the address below for authorization.
  42.  
  43. You are encouraged to pass a copy of LeyFinder along to your
  44. friends for evaluation.  Please encourage them to register their
  45. copy if they find that they can use it.  All registered users
  46. will receive a copy of the latest version of the LeyFinder
  47. application.                                          
  48.  
  49. Description:
  50. ------------
  51. Finds straight lines of ancient sites given their grid references, the
  52. minimum wanted in a line and the chosen 'accuracy' of the line. Plots
  53. the sites and found lines on a 'map' of the chosen area. Map can be
  54. saved to a file, both before and after plotting of lines.
  55.  
  56. NB This program is designed solely for use with grid references on grid
  57. systems not extending over more than 600 miles (1,000 kilometres).
  58. It is not designed for use with latitude and longitude and does not
  59. employ any spherical trigonometry in its calculations.
  60.  
  61. Usage:
  62. --------
  63.  
  64. Having Unzipped the compressed file, drag the !LeyFinder Application to
  65. a suitable directory, either on your hard disc, or a floppy disc.
  66.  
  67. Double click with the mouse over !LeyFinder Application icon, and an icon
  68. will appear on the icon bar. Complains if you try to load !LeyFinder twice.
  69.  
  70. For Help, choose 'Help' from the bar icon menu. (Click the middle 'Menu' mouse
  71. button over the bar icon.)
  72.  
  73. To create a new file, or append to an existing file, choose 'Create File' from the
  74. bar icon menu. A panel appears, to which you may drag External files to enter the
  75. file name into the upper slot, or type a chosen single name into the slot for
  76. Internal files. Then click on 'Start', enter a series of grid references, clicking on
  77. 'Next' each time, then close the file by clicking on 'Close'.
  78.  
  79. To input a pre-created file, choose 'Read File' from the bar icon menu. You may
  80. drag External files to this panel to register the file name, or type in the name of
  81. an existing Internal file. Click on 'Read' on this panel. A message appears if the
  82. file has been successfully read.
  83.  
  84. Now choose 'SetUp' from the bar icon menu, and supply the run-time parameters
  85. described below. Finally choose 'Run' from the bar icon menu, and a 'map'
  86. appears in a window with the sites plotted as points on it. The 'map' is processed
  87. and any ley lines found eventually plotted on it.
  88.  
  89. Finally choose 'Reset' from the bar icon menu to start again.
  90.  
  91. Information needed by the program and Options offered:
  92. ------------------------------------------------------
  93.   
  94. The Two Algorithms:-
  95. --------------------
  96. The basic (Quick) algorithm goes through all pairs of sites, establishes
  97. the line between them, then runs along it looking for other sites
  98. on the line within the desired degree of accuracy. At the same time
  99. all pairs of sites along the line are eliminated from further consid-
  100. eration. This is done by keeping an internal look-up table which
  101. records whether any particular pair has been considered or not before.
  102.  
  103. The elimination of pairs along the line is done without any regard
  104. to the direction of the line between them. This would be correct if
  105. all the points along the line lay exactly on it. However they usually don't
  106. and the algorithm tends towards radiating lines because any crossing
  107. lines tend to be suppressed. The second algorithm takes account of
  108. crossing lines by only eliminating pairs along an established line if
  109. the line between them lies sufficiently close in terms of its gradient 
  110. (angle of slope). The user supplies an angle in degrees within which
  111. lines must lie to be eliminated. The first algorithm does find valid lines,
  112. but tends to exaggerate the radial look of the final plot of the found lines.
  113.  
  114. The overall problem with both algorithms is that it is conceivable
  115. that lines could exist where none of the points lie exactly on them.
  116. Both algorithms require that at least two points lie on it within the
  117. degree of accuracy of the swathe cut by the line.
  118.  
  119. Fixed Scan or Random Scan:-
  120. ---------------------------
  121. A fixed scan goes through the pairs of sites in a systematic order
  122. i.e. site 1 with site 2, site 1 with site 3, site 1 with site 4 etc.
  123.  
  124. A random scan goes through the pairs in a non-systematic order
  125. e.g. site 6 with site 9, site 2 with site 7, site 4 with site 6 etc.
  126. , but in such a way that all pairs are considered.
  127.  
  128. Fixed Start or Random Start:
  129.   
  130. A fixed start always starts with the same pair i.e. site 1 with site 2
  131. A random start chooses a different pair each time the program is run.
  132.  
  133. Hence a fixed start guarantees the same result every time, but a
  134. random start will tend to produce a different result every time.
  135.  
  136. In order of 'randomness' (from least to most), there is:
  137.   
  138. 1.Fixed Scan, Fixed Start.  
  139. 2.Fixed Scan, Random Start. 
  140. 3.Random Scan, Fixed Start.
  141. 4.Random Scan, Random Start. 
  142.  
  143. Creation of New File:
  144.   
  145. Offers the user the option of creating a file of grid references
  146. and immediately analysing it for ley lines. A new file may be
  147. created either internally or externally. An existing file can be
  148. appended to, to add additional sites. A record number is supplied
  149. to which you supply an easting, northing and site name. All three
  150. must be supplied, then click on the 'Next' button to move onto
  151. the next record. Click on the 'Close' button to close and end the
  152. file.
  153.  
  154. Otherwise program asks for:- 
  155.   
  156. Name of file of map co-ordinates:
  157.   
  158. This is the file containing the co-ordinates of the sites. The format
  159. of the file is a set of lines of values, each line consisting of a
  160. site number (not necessarily in any order), followed by the easting,
  161. followed by the northing, followed by a string of up to 30 characters. 
  162. (The string being a name associated with the site.) These values
  163. are separated by commas. The easting and northing should be whole
  164. numbers and the string starts with a capital 'X' or small 'x' for an 
  165. highlighted site or anything else for a un-highlighted site. The string can 
  166. simply only be a single character if there is no name associated with the
  167. site. Names need not be unique. File should end with a new line.
  168. This file may also be created by using something like Edit or DeskEdit.
  169. It is checked as it is read in an elementary way. There should be at least
  170. ten sites in the file, but not more than 1000. Estimated time for processing
  171. the full 1000 sites is around two and a half hours with my StrongArm and
  172. RISCOS 4, less for faster chips.
  173.  
  174.  
  175. Automatic Scaling:
  176.   
  177. Will adjust the scaling to fit in all the sites on the screen.
  178.   
  179. Will also adjust the scaling so that it is the same east-west as
  180. north-south. Otherwise usually unequal scaling in the two directions.
  181.  
  182. Manual Scaling:
  183.   
  184. The minimum and maximum co-ordinates east-west and north-south are
  185. chosen by the user, so that any area of interest can be focused on.
  186.  
  187. Grid Lines:
  188.   
  189. These are horizontal and vertical lines that indicate the change of
  190. grid reference across the screen. If you choose this option a suitable
  191. grid interval is suggested, which may be over-ridden. Program will not
  192. allow too many grid lines. Grid lines do not erase the supplied site points.
  193.  
  194. Sites in Line:
  195.   
  196. One of the two most important parameters. It is the number of sites
  197. found in a line below which the line will be rejected. Too small and
  198. the map will fill with lines. Too large and no lines will be found. It
  199. has been found that 15 is a reasonable amount to start with for about
  200. 200 sites.
  201.  
  202. Width of Line:
  203.   
  204. The second most important parameter. This is the number of pixels across
  205. the line within which a site will be considered to lie.
  206. Can be fractional. This is across both sides, so if a value
  207. of 1.5 is chosen, the swathe cut by the line will extend by 0.75 pixels on
  208. either side. The screen mode within which this program operates means
  209. that the pixel (elementary part of image) is twice as high as wide.
  210. Consequently the width of the swathe is adjusted so that when the line
  211. is near horizontal it is wider than when the line is near vertical. It
  212. is suspected that near horizontal lines will tend to be detected more
  213. easily than those near vertical. Points that lie too close together on
  214. the screen will be rejected, since the line through them cannot be
  215. determined accurately within the confines of the co-ordinates
  216. supplied. If the width is too small, no lines may be found. If the
  217. width is too large, many inaccurate lines may be found. A starting
  218. value of one pixel is suggested.
  219.  
  220. Bell Sound:
  221.   
  222. Single normal bell sound on each discovery and/or high-pitched bell
  223. sound on completion.
  224.  
  225. Titles:
  226.   
  227. An option of having a title after the plotting of points and before
  228. the plotting of lines and/or one after the plotting of lines.
  229. Up to 72 characters including embedded spaces. Neither grid nor title
  230. before will erase the points on the screen as the points are plotted
  231. last.
  232.  
  233. ScreenSave:
  234.   
  235. Option of saving the screen to a Acorn Sprite file, either after plotting
  236. of points or after plotting of lines. No recovery is offered if the file
  237. names the user supplies are incorrect in any way, but a message
  238. will indicate the ScreenSave failure. A 'Saveas' panel appears, where
  239. you may drag the file icon with the mouse to a suitable directory, if required.
  240.  
  241. Screen Display:
  242.   
  243. Points, Grid Lines and Title (if chosen). Chosen points highlighted in
  244. red. Rest in black. Background white. Percentage through process shown
  245. by an hourglass mouse pointer. On the title bar the actual number of lines
  246. found so far followed by absolute maximum found in all lines.
  247. Holding down any key at at any time will halt the process, otherwise the
  248. completion of process, or a maximum of 1000 lines being found will
  249. also halt the process.
  250.  
  251. On Completion:
  252.   
  253. The found lines are plotted. Those of maximum occupancy are plotted in
  254. magenta, the rest in blue. If there are none or a maximum of 1000 has
  255. been found, a message is displayed. The screen is saved, if this
  256. option was chosen. Close the window to end the program. From the bar icon
  257. menu, click on 'Reset' to repeat the process, possibly with a new file, or an old
  258. one with new run-time parameters.
  259.  
  260. Warning: 
  261.   
  262. This program merely takes the donkey-work out of finding ley lines
  263. and the accuracy of the results are not guaranteed. It does not
  264. substitute for actual investigation on the ground and map. Britain, in
  265. particular is virtually littered with ancient sites, so almost
  266. anything will fit. Straight lines of telephone boxes have been found
  267. in the past! The algorithm (method) used seems to bias in favour of
  268. lines radiating out of certain sites with the fixed scan. The random
  269. scan was introduced in an attempt to get rid of this bias. It is hoped
  270. to give the likelihood that the line could not have occurred entirely
  271. by chance, plus more statistics on the found lines in future versions.
  272.  
  273. Comments, queries, curses, and praise to:-
  274.  
  275.          Martin Carradus,
  276.          Leaf Mindcraft,
  277.          c/o 27 Wells Road,
  278.          ILKLEY,
  279.          West Yorkshire.
  280.          LS29 9JE.
  281.          U.K.
  282.          
  283. Enclose s.a.e. if you want a reply.
  284.  
  285. File 'Stones' within this application contains eight figure grid
  286. references of some of the cup-and-ring marked stones on Rombalds Moor
  287. (Ilkley Moor). Stones thought to date from 1500-1800 B.C. and no one
  288. is totally sure of the significance of the markings or even exact
  289. antiquity. Such markings are not entirely unique within this area or
  290. within Britain (know of others in Northumberland and Galloway). Even 
  291. eight figure grid references only reduce the inaccuracy to a ten
  292. metre square, which is about the floor area of an average house, so
  293. not that accurate considering the size of the stones and the markings.
  294. Would probably have to use satellite navigation to get any degree of
  295. accuracy and I don't know how these grid references were worked out
  296. in the first place. Grid references obtained from:
  297.   
  298.   "The Carved Rocks On Rombalds Moor" West Yorkshire Metropolitan
  299.   County Council 1986 ISBN 0 86181 008 2. Thought now to be out of
  300.   print.          
  301.   
  302. Not all those available were put in the file.
  303.  
  304. There is now (2005) a more complete listing of the cup-and-ring marked rocks
  305. mentioned above in 'Prehistoric Rock Art of the West Riding'  by the 'West
  306. Yorkshire Archaeology Service', editors K.J.S. Boughey and E.A. Vickerman,
  307. (2003) ISBN 1 870453 32 8, ISSN 0959-3500.
  308.  
  309. Information on those markings in Galloway can be obtained from:
  310.   
  311.   "The Prehistoric Rock Art of Galloway and the Isle of Man"
  312.   
  313.   Ronald W.B.Morris Blandford Press 1979
  314.   
  315.   HardCover: ISBN 0 7137 0974 X
  316.   PaperBack: ISBN 0 7137 0975 8  Might also be difficult to get - I
  317.   found it in a remainder book shop.
  318.  
  319. The files 'Test' and 'Test2' are test sets of grid references to demonstrate 
  320. that this program really works! For 'Test' choose an occupancy of 10 and
  321. a width of 1.0. For 'Test2' choose an occupancy of 5 and a width of 10.0.
  322. Both files buried inside this application. Use 'Internal' to get them!
  323.   
  324. Good Luck in your investigations, but don't come to wild conclusions!
  325.